Package com.poker.client

Source Code of com.poker.client.GameImageSupplier

package com.poker.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.ui.Image;
public class GameImageSupplier {
    private final GameImages gameImages;
   
    public GameImageSupplier() {
      gameImages = GWT.create(GameImages.class);
    }
   
    public Image getPokerTable() {
      return new Image(gameImages.pokertable());
    }
   
    public Image getPlayerplace() {
      return new Image(gameImages.playerplace());
    }
}
TOP

Related Classes of com.poker.client.GameImageSupplier

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.